home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Info 1994 March
/
Internet Info CD-ROM (Walnut Creek) (March 1994).iso
/
inet
/
resource-guide
/
chapter.5
/
chtitle-test-ver1.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1992-01-25
|
302 b
|
12 lines
# Extract the chapter title from the intro.txt file.
rchttl = `sed -n '8p' intro.txt | sed 's/^ *.*: //'`
echo "\$rchttl = $rchttl"
chtitle = `echo $rchttl | awk ' BEGIN { N=45 ; a=".." }
{ if (length($0) <= N)
{print $0}
else
{printf "%s%s\n",substr($0,1,N-2),a}
} '`